home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
dev
/
gui
/
gtlayout.lha
/
Source
/
LTP_Atol.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-09-09
|
459b
|
34 lines
/*
** GadTools layout toolkit
**
** Copyright © 1993-1998 by Olaf `Olsen' Barthel
** Freely distributable.
**
** :ts=4
*/
#ifndef _GTLAYOUT_GLOBAL_H
#include "gtlayout_global.h"
#endif
#include "Assert.h"
ULONG
LTP_Atol(STRPTR String)
{
ULONG Value = 0;
while(*String == ' ' || *String == '\t')
String++;
while(*String)
{
if(*String >= '0' && *String <= '9')
Value = (Value * 10) + ((*String++) - '0');
else
break;
}
return(Value);
}